home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000323_fdc@watsun.cc.columbia.edu_Fri Aug 17 14:23:38 EDT 2001.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  81 lines

  1. Article: 12689 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!watsun.cc.columbia.edu!fdc
  3. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Error ttsetspeed failed:87
  6. Date: 17 Aug 2001 18:22:01 GMT
  7. Organization: Columbia University
  8. Lines: 64
  9. Message-ID: <9ljnc9$9at$1@newsmaster.cc.columbia.edu>
  10. References: <jzcf7.319673$T97.36240736@typhoon.nyroc.rr.com>
  11. NNTP-Posting-Host: watsun.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 998072521 9565 128.59.39.2 (17 Aug 2001 18:22:01 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 17 Aug 2001 18:22:01 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12689
  16.  
  17. In article <jzcf7.319673$T97.36240736@typhoon.nyroc.rr.com>,
  18. John Hill <jhill@sawmillmanager.com> wrote:
  19. : I have a DOS handheld running kermit 3.15 dialing into a Windows 2000
  20. : professional host running K95 ver 1.1.20.  The host waits for a call (using
  21. : the answer command) and then enters server mode.  The DOS unit then changes
  22. : directories and sends files to the host.
  23. : I am having problems with this however.  When certain DOS units that call in
  24. : the message "ttsetspeed failed:87"  appears on the host screen.  On other
  25. : units I get the message "Entering server mode" but it never proceeds any
  26. : further.
  27. If you can catch it in the act with a debug log, please send the log to
  28. kermit-support@columbia.edu.
  29.  
  30. : The script running on the server is as follows (this is not exact but
  31. : contains the important commands, if you need the exact script I can get
  32. : that):
  33. : set tapi line <MODEM TYPE>
  34. : set modem type tapi
  35. : set quiet on
  36. : set file collision overwrite
  37. : set file incomplete discard
  38. : enable host
  39. : enable delete
  40. : enable bye
  41. : enable finish
  42. : set block-check 3
  43. : set rec pack 500
  44. : set send pack 500
  45. : set buffers 280000
  46. :
  47. This command has no effect in Kermit 95 (but it does no harm either).
  48.  
  49. : set window 10
  50. : set speed 9600
  51. :
  52. Any special reason for such a low speed?  If all the modems involved
  53. are relatively modern error-correcting, data-compressing models, then
  54. you should be able use speeds of 57600bps or higher with RTS/CTS
  55. (hardware) flow control.
  56.  
  57. : set file type binary
  58. : set carrier-watch off
  59. :
  60. This is probably a mistake.  You want Kermit to monitor the carrier
  61. signal.  Otherwise if a call disconnects, Kermit won't know it, and then
  62. the next caller will get the previous caller's session.  Note that the
  63. ANSWER command knows that there is no carrier while it is waiting for a
  64. phone call, so you don't have to "set carrier-watch off" just because you
  65. are using the ANSWER command.
  66.  
  67. : cd /husky
  68. : answer
  69. : server
  70. : Any help would be greatly appreciated.
  71. What kind of modem is it?  If it's a modern modem, then presumably it
  72. is configured to keep its interface speed constant.  But if it didn't,
  73. that could explain the problems you are seeing.
  74.  
  75. - Frank
  76.